home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / c / mc302emb.zip / COUNT.C < prev    next >
C/C++ Source or Header  |  1994-03-18  |  204b  |  12 lines

  1. #include cflea.h
  2. /*
  3.  * Count to 1000, and display numbers as ASCII
  4.  */
  5. main()
  6. {
  7.     int i;
  8.     for(i=0; i < 1000; ++i)
  9.         printf("%u\n", i);
  10.     asm " FCB $FF";        /* Illegal opcode to stop simulator */
  11. }
  12.